home *** CD-ROM | disk | FTP | other *** search
/ Plug-In Power Pack for Netscape Communicator / Plug-In Power Pack for Netscape Communicator.iso / plugins / dataviews / dvdraw / examples / datasource / varselectdlg.h < prev   
C/C++ Source or Header  |  1997-05-12  |  1KB  |  60 lines

  1. // VarSelectDlg.h : header file
  2. //
  3.  
  4. #include "resource.h"
  5. #include "ExampleDsDll.h"
  6. #include "GenericListCtrl.h"
  7.  
  8.  
  9. typedef struct tagDATATYPETABLE {
  10.      char    *name;  //  String value
  11.      int     type;   //  Constant value
  12.  } DataTypeEntry; 
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CVarSelectDlg dialog
  16.  
  17. class CVarSelectDlg : public CDialog
  18. {
  19. // Construction
  20. public:
  21.     CVarSelectDlg(VARDEFDATA* pList, DV_DSDLLDATA* pData, CWnd* pParent = NULL);
  22.  
  23.     VARDEFDATA* GetVarSelection() { return m_pSelectedVarData; }
  24.     void SelectItem(int nItem);
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CVarSelectDlg)
  28.     enum { IDD = IDD_DIALOG1 };
  29.     CGenericListCtrl    m_VarList;
  30.     //}}AFX_DATA
  31.  
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(CVarSelectDlg)
  36.     protected:
  37.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. protected:
  42.   static BOOL   m_FirstTime;
  43.  
  44.     DV_DSDLLDATA*    m_pData;
  45.     VARDEFDATA*   m_pSelectedVarData;
  46.     VARDEFDATA*   m_pVarDefList;
  47.  
  48. private :
  49.   CBitmapButton m_StdBrowser;
  50.  
  51.     // Generated message map functions
  52.     //{{AFX_MSG(CVarSelectDlg)
  53.     virtual BOOL OnInitDialog();
  54.     virtual void OnOK();
  55.     virtual void OnCancel();
  56.     afx_msg void OnStdBrowser();
  57.     //}}AFX_MSG
  58.     DECLARE_MESSAGE_MAP()
  59. };
  60.